* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f4f9ff;
    color: #333;
    line-height: 1.6;
}

/* Top Info Bar */
.top-bar {
    background-color: #001f4d;
    color: white;
    padding: 6px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.info-left span {
    margin-right: 20px;
}

@media (max-width: 600px) {
    .top-bar .container {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }

    .info-left span {
        margin-left: 0;
        margin-right: 0;
        /* Remove right margin for stacking */
    }
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    height: 75px;
    /* Fixed header height */
    display: flex;
    align-items: center;
    background: #002d72;
    color: white;
    position: relative;
    z-index: 1000;
    padding: 0 20px;
    /* Add horizontal padding to header itself */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Ensure container fills header width */
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* --- Mobile Specific Styles (Default for Mobile First) --- */

/* Hamburger Menu Toggle */
.menu-toggle {
    display: block;
    /* Show hamburger on mobile */
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    order: 2;
    /* Position after logo */
}

/* Main Navigation (Hidden by default on mobile) */
.main-nav {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 100%;
    /* Below the header */
    left: 0;
    width: 100%;
    background: #002f9e;
    /* Solid background for mobile menu */
    flex-direction: column;
    /* Stack links vertically */
    padding: 15px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    /* Ensure it's below top-bar but above content */
}


.main-nav.active {
    display: flex;
    /* Show when active */
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    /* Stack items vertically for mobile */
    align-items: center;
    /* Center align items */
    gap: 15px;
    /* Space between links */
    width: 100%;
    /* Ensure ul takes full width of nav */
}

.main-nav ul li {
    width: 100%;
    /* Make list items take full width */
    text-align: center;
    /* Center text within list items */
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 2px 15px;
    /* Increase padding for better tap area */
    display: block;
    /* Make link fill padding area */
    transition: background-color 0.3s ease;
    
}

.main-nav a:hover {
    background-color: #004080;
    /* Highlight on hover */
}

/* Dropdown Container for Mobile */
.main-nav .dropdown {
    position: relative;
    width: 100%;
    /* Ensure dropdown takes full width */
}

.main-nav .dropdown a {
    position: relative;
    /* For caret positioning */
}

.main-nav .dropdown a .fas.fa-caret-down {
    margin-left: 5px;
    /* Space for caret */
}

/* Dropdown Menu for Mobile */
.main-nav .dropdown-menu {
    display: none;
    /* Hidden by default */
    position: static;
    /* Stack naturally within the flow for mobile */
    background: #003a8d;
    /* Slightly different background for sub-menu */
    color: white;
    /* Text color for sub-menu */
    box-shadow: none;
    /* No shadow for mobile dropdown */
    min-width: unset;
    /* Remove min-width constraint */
    border-radius: 0;
    /* No border-radius */
    padding: 0;
    /* Remove padding */
    width: 100%;
    /* Take full width */
}

.main-nav .dropdown.active .dropdown-menu {
    display: block;
    /* Show when parent dropdown is active */
}

.main-nav .dropdown-menu li {
    padding: 0;
    /* Remove padding from li */
    width: 100%;
    /* Full width */
}

.main-nav .dropdown-menu li a {
    color: white;
    /* Ensure links are white */
    padding: 10px 20px;
    /* Adjust padding for sub-items */
    background-color: #003a8d;
    /* Same as dropdown menu background */
}

.main-nav .dropdown-menu li a:hover {
    background-color: #004d99;
    /* Hover effect for sub-items */
}



/* --- Desktop Styles (Media Query) --- */
@media (min-width: 768px) {

    /* Top Bar - Desktop */
    .top-bar {
        padding: 6px 0;
        /* Original padding */
        font-size: 14px;
        /* Original font size */
        text-align: right;
    }

    .top-bar .container {
        justify-content: flex-end;
        flex-direction: row;
    }

    .info-left span {
        margin-right: 20px;
    }

    /* Header - Desktop */
    .header {
        height: 75px;
        padding: 0;
        /* Remove padding as container handles it */
    }

    .header .container {
        justify-content: space-between;
        /* Revert to original justify */
        width: 90%;
        /* Restore original container width */
    }

    .logo img {
        height: 90px;
    }

    /* Hide hamburger menu on desktop */
    .menu-toggle {
        display: none;
    }

    /* Main Navigation - Desktop */
    .main-nav {
        display: block;
        /* Always visible on desktop */
        position: static;
        /* No absolute positioning */
        width: auto;
        /* Auto width */
        background: none;
        /* No background */
        box-shadow: none;
        /* No shadow */
        flex-direction: row;
        /* Horizontal links */
        padding: 0;
        z-index: auto;
    }

    .main-nav ul {
        flex-direction: row;
        /* Horizontal links */
        gap: 20px;
        /* Restore original gap */
        width: auto;
        /* Auto width for ul */
    }

    .main-nav ul li {
        width: auto;
        /* Auto width for list items */
        text-align: left;
        /* Revert text alignment */
    }

    .main-nav a {
        padding: 0;
        /* Remove extra padding from mobile */
        display: inline-block;
        /* Revert to inline-block for proper spacing */
        background-color: transparent;
        /* No background hover */
    }

    .main-nav a:hover {
        color: #00aaff;
        background-color: transparent;
        /* No background hover */
    }

    /* Dropdown Container for Desktop */
    .main-nav .dropdown {
        position: relative;
        width: auto;
        /* Auto width */
    }

    /* Dropdown Menu for Desktop */
    .main-nav .dropdown-menu {
        display: none;
        /* Hidden by default */
        position: absolute;
        /* Absolute positioning */
        top: 100%;
        left: 0;
        background: white;
        /* White background */
        color: black;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        min-width: 180px;
        /* Restore min-width */
        border-radius: 5px;
        padding: 0;
        /* Ensure no padding on the ul itself */
    }

    /* Show Dropdown on Hover (Desktop) */
    .main-nav .dropdown:hover .dropdown-menu {
        display: block;
    }

    .main-nav .dropdown-menu li {
        padding: 10px;
        /* Restore padding for desktop dropdown items */
    }

    .main-nav .dropdown-menu li a {
        color: #111827;
        /* Dark text for desktop dropdown items */
        padding: 0;
        /* Remove padding as li handles it */
        background-color: transparent;
        /* No background */
    }

    .main-nav .dropdown-menu li:hover {
        background-color: #004080;
        color: white;
    }

    .main-nav .dropdown-menu li:hover a {
        color: white;
    }
}

#whatsappicon {
    text-decoration: none;
    color: rgb(77, 232, 77);
}

#whatsapp {
    text-decoration: none;
    color: rgb(77, 232, 77);
}

/* Firewall Section with Image */
.slide-in-left,
.slide-in-right {
    opacity: 0;
    transition: all 0.8s ease-out;
    position: relative;
}

/* Left slide */
.slide-in-left {
    transform: translateX(-100px);
}

/* Right slide */
.slide-in-right {
    transform: translateX(100px);
}

/* When in view */
.in-view {
    opacity: 1 !important;
    transform: translateX(0) !important;
}



.firewall-section {
    /* padding: 50px 20px; */
    /* border-radius: 12px; */
    background: linear-gradient(135deg, #007bff, #002d72);
    color: white;
    /* margin: 20px; */
}

/* Container */
.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Firewall Section Content */
.firewall-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Text Section */
.firewall-text {
    flex: 1;
    min-width: 300px;
}

.firewall-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    margin-top: 30px;
    text-align: center;
}

.firewall-text .description {
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
}

/* Image Section */
.firewall-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.firewall-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

/* Responsive for Tablets & Mobile */
@media (max-width: 992px) {
    .firewall-content {
        flex-direction: column;
        text-align: center;
    }

    .firewall-text h2 {
        font-size: 1.8rem;
        margin-top: 20px;
    }

    .firewall-text .description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .firewall-image img {
        max-width: 100%;
    }
}

.features-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.features-section h3 {
    color: #002d72;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.features-section h3::after {
    content: '';
    display: block;
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #004d99, #339dff);
    border-radius: 2px;
    margin: 10px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: linear-gradient(to top, #004d99, #339dff);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-family: "Segoe UI", "Poppins", sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        background-position 1s ease;
}


.feature-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Heading */
.feature-card h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

/* Icon in Heading */
.feature-card h4 i {
    color: #ffd700;
    /* Gold for icons */
    margin-right: 8px;
}

/* Description */
.feature-card p {
    color: #e6f7ff;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
}


/* Responsive */
@media (max-width: 768px) {
    .features-section h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .features-section h3 {
        font-size: 1.6rem;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .firewall-section h2 {
        font-size: 1.8rem;
    }

    .features-section h3 {
        font-size: 1.7rem;
    }

    .firewall-section .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .firewall-section h2 {
        font-size: 1.6rem;
    }

    .features-section h3 {
        font-size: 1.5rem;
    }

    .firewall-section .description {
        font-size: 0.95rem;
    }
}

/* Brands Section */
.brands-section {
    background-color: #ffffff;
    padding: 50px 20px;
}

.brands-section h3 {
    text-align: center;
    color: #001e6c;
    font-size: 2rem;
    margin-bottom: 30px;
}

.brands-section h3::after {
    content: '';
    display: block;
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #004d99, #339dff);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* Slider Styling */
.brand-slider {
    overflow: hidden;
    position: relative;
    /* Adding padding to prevent names from being cut off at edges if they are too close */
    padding: 20px 0;
}

.slide-track {
    display: flex;
    /* Adjusting width based on the new slide width (image + name) */
    width: calc(200px * 20);
    /* Each slide will be around 200px wide, including padding/margins */
    animation: scroll 60s linear infinite;
    /* Slower animation: 60s instead of 40s */
}

.slide {
    width: 200px;
    /* Adjusted width to better fit image and text */
    /* Removed fixed height to allow content to dictate height */
    display: flex;
    flex-direction: column;
    /* Stack image and name vertically */
    align-items: center;
    /* Center content horizontally */
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    /* Include padding in the width calculation */
    text-align: center;
    /* Center the text */
}

.slide img {
    max-width: 100%;
    /* Ensure image doesn't overflow */
    height: 180px;
    /* Set a fixed height for images to keep them consistent */
    object-fit: contain;
    /* filter: grayscale(100%); Keep grayscale */
    transition: filter 0.3s;
    margin-bottom: 10px;
    /* Space between image and name */
}

.slide img:hover {
    filter: grayscale(0%);
}

/* Brand Name below Image */
.brand-name {
    color: #001e6c;
    /* Dark blue for brand names */
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    /* Prevent brand names from wrapping if they are long */
    overflow: hidden;
    /* Hide overflow if text is too long (though white-space nowrap handles most of this) */
    text-overflow: ellipsis;
    /* Add ellipsis if text is cut off */
}

/* Animation - Adjusted for new slide width and slower speed */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 10));
        /* Adjust based on new slide width */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide {
        width: 150px;
        /* Adjusted for smaller screens */
    }

    .slide img {
        height: 80px;
        /* Smaller image height */
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .slide-track {
        width: calc(150px * 20);
        animation: scroll 45s linear infinite;
        /* Adjust animation speed */
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-150px * 10));
        }
    }
}

@media (max-width: 480px) {
    .slide {
        width: 120px;
        /* Further adjusted for very small screens */
    }

    .slide img {
        height: 60px;
        /* Even smaller image height */
    }

    .brand-name {
        font-size: 0.8rem;
    }

    .slide-track {
        width: calc(120px * 20);
        animation: scroll 35s linear infinite;
        /* Adjust animation speed */
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-120px * 10));
        }
    }

    .brands-section h3 {
        font-size: 1.5rem;
    }
}

/* Business Benefits Section - Point Wise */
.benefits-section {
    background-color: #f0f7ff;
    padding: 50px 20px;
}

.benefits-section h3 {
    text-align: center;
    color: #001e6c;
    font-size: 2rem;
    margin-bottom: 25px;
}

.benefits-section h3 i {
    color: #007bff;
    margin-right: 8px;
}

.benefits-section h3::after {
    content: '';
    display: block;
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #004d99, #339dff);
    border-radius: 2px;
    margin: 10px auto 0;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    background-color: #fff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #dce3eb;
    font-size: 1rem;
    color: #003366;
    transition: background-color 0.3s;
}

.benefits-list li i {
    color: #007bff;
    margin-right: 15px;
    font-size: 1.2rem;
}

.benefits-list li:hover {
    background-color: #e6f0ff;
}

/* Responsive */
@media (max-width: 480px) {
    .benefits-section h3 {
        font-size: 1.6rem;
    }

    .benefits-list li {
        font-size: 0.95rem;
        padding: 12px 16px;
    }

    .benefits-list li i {
        font-size: 1rem;
        margin-right: 10px;
    }
}

.cta {
    background: linear-gradient(135deg, #e0f2ff, #f9fcff);
    padding: 80px 20px;
    text-align: center;
    border-radius: 16px;
    margin: 60px auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
}

.cta-content {
    max-width: 700px;
    margin: auto;
}


.cta h2 {
    color: #002d72;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    color: #444;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    /* font-size: 16px;
    color: #444;
    line-height: 1.7;
    letter-spacing: 0.2px;
    margin-bottom: 15px; */
}

.cta-btn {
    background: #007bff;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background: #005fc2;
    transform: translateY(-2px);
}

/* 🌟 Responsive */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 16px;
    }
}


/* 🔗 Footer 
.footer {
    background-color: #001f4d;
    color: white;
    padding: 60px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer h4,
.footer h3 {
    margin-bottom: 15px;
}

.footer p,
.footer a {
    color: #ddd;
    font-size: 14px;
}

.footer a:hover {
    color: #00aaff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    color: #aaa;
} */


/* Footer Styles */
.site-footer {
    /* background-color: #1a203c; Dark blue from image */
    /* background-color: #0d0d57; */
    /* background-image: url(./bg_images/footer1.png); */
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
    z-index: 5;
    /* Ensure footer is below the grow-business section */
    margin-top: 50px;
    /* Adjust this to pull the footer up behind the grow-business section */
    /*padding-top: 150px;  Add padding to the top of the footer to account for the overlapping section */
    height: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: orange;
}

.footer-column address,
.footer-column p {
    margin-bottom: 10px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    color: orange;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #fff;
    font-size: 0.9em;
}

footer {
    background: #1a237e;
    /* background-color: #0d0d57; */
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}